home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19980424-19980901 / 000154_news@newsmaster….columbia.edu _Fri May 29 13:23:24 1998.msg < prev    next >
Internet Message Format  |  1998-08-31  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id NAA07223
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 29 May 1998 13:23:24 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id NAA05677
  7.     for kermit.misc@watsun; Fri, 29 May 1998 13:23:23 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: setting defaults in mykermrc
  12. Date: 29 May 1998 17:23:19 GMT
  13. Organization: Columbia University
  14. Lines: 27
  15. Message-ID: <6kmqu7$5jq$1@apakabar.cc.columbia.edu>
  16. References: <356eab93.459994@news.communique.net>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:8819
  19.  
  20. In article <356eab93.459994@news.communique.net>,
  21. Francis DiFulco <Fdifulco@communique.net> wrote:
  22. : Trying to figure how to set the download directory....
  23. : I have a linux box with a Equonix 8 port to handle uucp transfers and
  24. : kermit (ver 6) to handle all non-uucp transfers.  I plan to let the
  25. : user log in and the login script will start kermit and then logout
  26. : when file transfer completes.  So I copied the ckermod.ini to
  27. : mykermrc in the user direcotry and modified it by adding:
  28. : SET FILE DOWNLOAD DIRECTORY /var/spool/uucppublic
  29. : SET PROTOCOL ZMODEM
  30. : or
  31. : SET PROTOCOL KERMIT
  32. : when I startup kermit it takes the protocol setting but not the file
  33. : download directory - it reports back "Not confirmed -
  34. : /var/spool/uucppublic" command file:/home/test1234/.mykermrc, line 55
  35. : I can not find in the kermit how to confirm this command...can anyone
  36. : give some pointers on this one - unless my late nights are catching up
  37. : with me.
  38. :
  39. You need a dash between DOWNLOAD and DIRECTORY:
  40.  
  41.   SET FILE DOWNLOAD-DIRECTORY /var/spool/uucppublic/
  42.  
  43. - Frank